home *** CD-ROM | disk | FTP | other *** search
/ Plug-In Power Pack for Netscape Communicator / Plug-In Power Pack for Netscape Communicator.iso / plugins / dataviews / dvtools / examples / windows / dv_ocx / dvocxppg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-05-08  |  830 b   |  37 lines

  1. // DvocxPpg.h : Declaration of the CDvocxPropPage property page class.
  2.  
  3. ////////////////////////////////////////////////////////////////////////////
  4. // CDvocxPropPage : See DvocxPpg.cpp.cpp for implementation.
  5.  
  6. class CDvocxPropPage : public COlePropertyPage
  7. {
  8.     DECLARE_DYNCREATE(CDvocxPropPage)
  9.     DECLARE_OLECREATE_EX(CDvocxPropPage)
  10.  
  11. // Constructor
  12. public:
  13.     CDvocxPropPage();
  14.  
  15. // Dialog Data
  16.     //{{AFX_DATA(CDvocxPropPage)
  17.     enum { IDD = IDD_PROPPAGE_DVOCX };
  18.     BOOL    m_fUseDblBuf;
  19.     CString    m_viewFile;
  20.     UINT    m_updateRate;
  21.     BOOL    m_autoUpdate;
  22.     double    m_scale;
  23.     //}}AFX_DATA
  24.  
  25. // Implementation
  26. protected:
  27.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  28.  
  29. // Message maps
  30. protected:
  31.     //{{AFX_MSG(CDvocxPropPage)
  32.     afx_msg void OnFiles();
  33.     //}}AFX_MSG
  34.     DECLARE_MESSAGE_MAP()
  35.  
  36. };
  37.